# This is a BitKeeper generated patch for the following project: # Project Name: Linux kernel tree # This patch format is intended for GNU patch command version 2.5 or higher. # This patch includes the following deltas: # ChangeSet 1.1093 -> 1.1094 # include/linux/timex.h 1.7 -> 1.8 # # The following is the BitKeeper ChangeSet Log # -------------------------------------------- # 03/05/19 davidm@tiger.hpl.hp.com 1.1094 # Fix locking comments for time interpolator routines. # -------------------------------------------- # diff -Nru a/include/linux/timex.h b/include/linux/timex.h --- a/include/linux/timex.h Tue May 20 00:03:07 2003 +++ b/include/linux/timex.h Tue May 20 00:03:07 2003 @@ -336,7 +336,7 @@ extern void register_time_interpolator (struct time_interpolator *); extern void unregister_time_interpolator (struct time_interpolator *); -/* Called with xtime read- OR write-lock acquired. */ +/* Called with xtime WRITE-lock acquired. */ static inline void time_interpolator_update (long delta_nsec) { @@ -371,7 +371,7 @@ (*ti->update)(delta_nsec); } -/* Called with xtime read- or write-lock acquired. */ +/* Called with xtime WRITE-lock acquired. */ static inline void time_interpolator_reset (void) { @@ -382,6 +382,7 @@ (*ti->reset)(); } +/* Called with xtime READ-lock acquired. */ static inline unsigned long time_interpolator_get_offset (void) {